.video-play-overlay {
    position: absolute;
    top: auto;
    left: auto;
    right: 8px;
    bottom: 8px;
    transform: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .swiper-slide {
    position: relative;
  }

  .swiper-slide:hover .video-play-overlay {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
  }

  .share-buttons .btn {
    min-width: 120px;
  }

  .share-buttons .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  #shareUrlInput {
    font-size: 0.9em;
  }

  .spinner-border-sm {
    width: 1rem;
    height: 1rem;
  }

  /* 拼多多风格弹窗样式 */
  .pdd-style-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
  }

  /* 头部样式 */
  .pdd-modal-header {
    position: relative;
    padding: 0;
    border: none;
    overflow: hidden;
  }

  .pdd-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa8a8 100%);
  }

  .pdd-header-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pddShimmer 3s ease-in-out infinite;
  }

  @keyframes pddShimmer {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
  }

  .pdd-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .pdd-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .pdd-header-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px;
    color: white;
  }

  .pdd-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    backdrop-filter: blur(10px);
  }

  .pdd-gift-icon {
    font-size: 24px;
    color: white;
    animation: pddBounce 2s ease-in-out infinite;
  }

  @keyframes pddBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }

  .pdd-modal-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .pdd-modal-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
  }

  /* 主体内容样式 */
  .pdd-modal-body {
    padding: 25px;
    background: #f8f9fa;
  }

  /* 价格展示区域 */
  .pdd-price-section {
    margin-bottom: 25px;
  }

  .pdd-price-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }

  .pdd-current-price {
    width: 100%;
    text-align: center;
  }

  .pdd-target-price {
    text-align: center;
    flex: 1;
  }

  .cut-progress-info {
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(220, 53, 69, 0.2);
  }

  .cut-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
  }

  .pdd-price-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
  }

  .pdd-price-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .pdd-price-value.pdd-target {
    color: #ff6b6b;
  }

  .pdd-progress-wrapper {
    text-align: center;
  }

  .pdd-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .pdd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .pdd-progress-text {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  .pdd-highlight {
    color: #ff6b6b;
    font-weight: bold;
  }

  /* 分享按钮区域 */
  .pdd-share-section {
    margin-bottom: 20px;
  }

  .pdd-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
  }

  .pdd-share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pdd-share-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pdd-share-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .pdd-share-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .pdd-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
  }

  .pdd-facebook .pdd-btn-icon {
    background: #1877f2;
  }

  .pdd-twitter .pdd-btn-icon {
    background: #1da1f2;
  }

  .pdd-whatsapp .pdd-btn-icon {
    background: #25d366;
  }

  .pdd-copy .pdd-btn-icon {
    background: #6c757d;
  }

  .pdd-share-btn span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
  }

  /* 链接输入区域 */
  .pdd-link-section {
    margin-bottom: 20px;
  }

  .pdd-link-wrapper {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .pdd-link-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    background: transparent;
    outline: none;
  }

  .pdd-copy-btn {
    background: #ff6b6b;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .pdd-copy-btn:hover {
    background: #ff5252;
  }

  /* 加载状态 */
  .pdd-loading {
    text-align: center;
    padding: 20px;
  }

  .pdd-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .pdd-loading-text {
    color: #666;
    font-size: 14px;
    margin: 0;
  }

  /* 底部按钮 */
  .pdd-modal-footer {
    padding: 20px 25px;
    border: none;
    background: #f8f9fa;
  }

  .pdd-start-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pdd-start-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  }

  .pdd-start-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .pdd-btn-arrow {
    transition: transform 0.3s ease;
  }

  .pdd-start-btn:hover .pdd-btn-arrow {
    transform: translateX(3px);
  }

  /* 响应式设计 */
  @media (max-width: 576px) {
    .pdd-style-modal {
      margin: 10px;
      max-width: calc(100vw - 20px);
    }

    .pdd-share-buttons {
      grid-template-columns: 1fr;
    }

    .pdd-price-card {
      flex-direction: column;
      gap: 15px;
    }
  }

.page-product .peoduct-info .price-wrap {
      margin-bottom: 10px;
    }

    .dialog-review-form {

    .photos-upload {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
    }

    ::v-deep(.el-upload) {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box;
    }

    ::v-deep(.el-upload .el-upload-dragger) {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      box-sizing: border-box;
    }

    ::v-deep(.el-upload__text) {
      word-break: break-word;
      white-space: normal;
      text-align: center;
    }

    .el-dialog {
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    &
    __header {
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
    }

    &
    __body {
      padding: 20px;
      overflow: hidden;
    }

    .el-upload {
      width: 100%;
      max-width: 100%;

    .el-upload-dragger {
      width: 100%;
      max-width: 100%;
    }

    }
    }

    .el-form-item {
      margin: 0;
    }

    }

    /* 其他样式保持不变 */

    .disabled {
      opacity: 0.4;
      cursor: not-allowed;
      color: #ccc;
    }

    .seckill-countdown {
      font-size: 0.9rem;
    }

    .seckill-countdown .alert {
      border-radius: 4px;
      background: linear-gradient(45deg, #ff3021, #c40404);
      color: white;
      display: inline-flex;
      align-items: center;
      animation: pulse 1.5s infinite;
    }

    .countdown-text {
      font-family: monospace;
      font-weight: bold;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.02);
      }
      100% {
        transform: scale(1);
      }
    }

    @media (min-width: 769px) {
      /* 限制容器的最大高度，触发滚动 */
      #product-top {
        position: relative;
      }

      /* 让左侧内容粘性定位在页面滚动时停在顶部 */
      .right-column {
        position: sticky;
        top: 100px; /* 悬浮时距离顶部的距离 */
      }

      /* 可选：添加滚动条或限制最大高度 */
      .sticky-wrapper {
        padding-right: 15px;
      }
    }


    .review-container {
      font-family: Arial, sans-serif;
      overflow-y: auto;
      margin: 0 auto;
      padding: 20px;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .review-item {
      border-bottom: none;
      padding: 5px 0;
    }

    .review-author {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .review-author .name {
      font-weight: bold;
    }

    .review-author .date {
      color: #666;
    }

    .review-title {
      font-weight: bold;
      margin: 10px 0;
    }

    .review-content {
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .review-recommend {
      color: #666;
    }

    .review-origin {
      color: #999;
    }

    .rating-row {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-bottom: 10px;
    }

    .rating-row.active {
      background-color: #f4f4f4;
    }

    .rating-star {
      font-size: 18px;
      margin-right: 10px;
    }

    .rating-progress {
      flex: 1;
      margin-right: 10px;
    }

    .rating-count {
      font-size: 14px;
    }

    .active-filter-bar {
      margin-top: 10px;
    }

    .file-preview {
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-right: 10px;
      border: 1px solid #eee;
      border-radius: 4px;
    }

    .uploaded-files {
      border: 1px solid #ebeef5;
      border-radius: 4px;
      padding: 10px;
    }

    .quantity-wrap {
      user-select: none;
    }

    .quantity-wrap i {
      pointer-events: auto;
    }

    .file-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px dashed #eee;
    }

    .file-item:last-child {
      border-bottom: none;
    }

    .file-name {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .file-remove-btn {
      color: #f56c6c;
      padding: 0;
      margin-left: 10px;
    }

    .review-list {
      -webkit-overflow-scrolling: touch;
    }

    .rating-display .el-rate__item {
      cursor: pointer !important;
    }

    .rating-display .el-rate__icon {
      cursor: pointer !important;
    }

    .review-images {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .review-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 1px solid #ddd;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .review-image:hover {
      transform: scale(1.05);
    }

    .review-images-dialog {
      z-index: 3100 !important;
    }

    .review-images-dialog .mobile-dialog {

    @media (max-width: 1024px) {
      max-width:

    90vw

    ;
      max-height:

    90vw

    ;
      width:

    90vw

    !important;
      top:

    50% !important;
      left:

    50% !important;
      transform:

    translate(-50%, -50%) !important;
      margin:

    0 !important;
      display: flex

    ;
      align-items: center

    ;
      justify-content: center

    ;
    }

    }

    .review-images-dialog .PC-dialog {
      max-width: 80vh;
      max-height: 80vh;
      width: 80vh !important;
      height: 80vh !important;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .review-images-dialog .el-dialog__body {
      width: 100%;
      height: 100%;
      padding: 20px;
      aspect-ratio: 1/1;
    }

    .review-images-dialog .el-dialog__header {
      padding: 0;
    }

    .review-images-dialog .el-dialog__headerbtn {
      top: 5px;
      right: 5px;
      z-index: 1;
    }

    .el-form-item__error {
      color: #f56c6c !important;
      font-size: 12px !important;
      line-height: 1.5 !important;
      margin-top: 2px !important;
      display: block !important;
      position: static !important;
      min-height: 18px !important;
      z-index: 10;
    }

    .size-guide-btn {
      font-size: 0.8rem;
      color: #666;
      text-decoration: none;
    }

    .size-guide-btn:hover {
      color: #333;
      text-decoration: underline;
    }

    .size-guide-btn i {
      margin-right: 3px;
    }

    /* 配送估算样式 */
    .delivery-estimate-wrapper {
      position: relative;
    }

    .delivery-estimate {
      margin: 20px 0;
    }

    .delivery-title {
      font-size: 18px;
      font-weight: bold;
    }

    .delivery-region {
      display: flex;
      align-items: center;
      color: #666;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .delivery-region i {
      margin-right: 10px;
    }

    /* 分布式排列样式 */
    .delivery-options.distributed {
      display: flex;
      flex-wrap: wrap;
      background-color: #f8f8f8;
      border-radius: 4px;
    }

    .delivery-option {
      min-width: 160px;
      padding: 6px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .delivery-option.highlight {
      color: #67C23A;
      font-weight: bold;
    }

    .time-text {
      font-size: 14px;
      font-weight: 500;
    }

    .delivery-note-inline {
      font-size: 12px;
      color: #666;
    }

    .price-wrap {
      display: flex;
      align-items: baseline;
    }

    .discount-percentage {
      font-size: 0.9rem;
      padding: 0.4rem 0.8rem;
      border-radius: 0.5rem;
      height: 28px;
      min-width: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 28px;
      margin-left: 0.5rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .also-like {
        padding: 10px;
      }

      .review-list {
        max-height: 50vh;
        overflow-y: auto;
      }

      .review-container {
        padding: 10px;
      }

      .dialog-review-form {

      .el-dialog {
        width: 95% !important;
        margin: 10px auto;
      }
    }

    .discount-percentage {
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      min-width: 45px;
    }

    }

    .shipping-container {
      padding: 10px;
      position: relative;
      /* 确保容器有明确的高度参考 */
    }

    @media (max-width: 768px) {
      .shipping-container {
        border-bottom: 1px solid #f1f1f1;
      }
    }

    .shipping-header {
      font-size: 14px;

    a {
      color: rgb(52, 168, 83);
    }

    }

    .shipping-scroll {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      white-space: nowrap;
      touch-action: pan-x;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      scroll-behavior: smooth;
      will-change: scroll-position;
      /* 为箭头留出空间 */
      margin: 0 30px;
      /* 设置明确的高度 */
    }

    .shipping-scroll::-webkit-scrollbar {
      display: none;
    }

    /* 修复箭头垂直居中 */
    .shipping-arrow {
      position: absolute;
      /* 基于shipping-scroll的位置计算 */
      top: calc(50% + 16px); /* 考虑header的高度偏移 */
      transform: translateY(-50%);
      width: 25px;
      height: 25px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      z-index: 10;
      transition: all 0.3s ease;
      opacity: 0.8;
    }

    .shipping-arrow:hover {
      background: rgba(0, 0, 0, 0.8);
      opacity: 1;
      transform: translateY(-50%) scale(1.1);
    }

    .shipping-arrow:disabled {
      background: rgba(0, 0, 0, 0.3);
      cursor: not-allowed;
      opacity: 0.5;
    }

    .shipping-arrow-left {
      left: 5px;
    }

    .shipping-arrow-right {
      right: 5px;
    }

    .shipping-item {
      flex: 0 0 66.66%;
      min-width: 66.66%;
      margin-right: 10px;
      background: #f9f9f9;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .shipping-desc {
      color: #666;
      font-size: 14px;
      line-height: 1.4;
      /* Add these properties to handle text overflow */
      word-wrap: break-word;
      white-space: normal;
      overflow-wrap: break-word;
      /* Optional: limit to 2 lines with ellipsis */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .product-details {
      font-family: Arial, sans-serif;
      color: #333;
      max-width: 600px;
      margin: 0 auto;
    }

    .detail-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .detail-header h3 {
      margin: 0;
      font-size: 18px;
    }

    .actions {
      color: #666;
      font-size: 14px;
    }

    .attribute-group {
      margin-bottom: 15px;
    }

    .attribute-group h4 {
      margin: 10px 0;
      font-size: 16px;
    }

    .attributes-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .attributes-list li {
      padding: 5px 0;
      display: flex;
    }

    .attribute-name {
      width: 120px;
      color: #666;
    }

    .attribute-value {
      flex: 1;
    }

    /* 移动端优化 */
    @media (max-width: 768px) {
      .shipping-item {
        flex: 0 0 80%;
        min-width: 80%;
      }

      .shipping-arrow {
        width: 20px;
        height: 20px;
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .shipping-item {
        flex: 0 0 90%;
        min-width: 90%;
      }
    }

    .size-guide-dialog .el-dialog {
      border-radius: 8px;
    }

    .size-guide-dialog .dialog-title {
      font-size: 18px;
      font-weight: bold;
    }

    .size-guide-dialog .gender-tabs {
      margin-bottom: 20px;
    }

    .size-guide-dialog .el-table {
      table-layout: fixed !important;
      width: 100% !important;
      font-size: 14px;
    }

    .size-guide-dialog .el-table__header-wrapper {
      width: 100% !important;
    }

    .size-guide-dialog .el-table__header {
      width: 100% !important;
    }

    .size-guide-dialog .el-table__body {
      width: 100% !important;
    }

    .size-guide-dialog .el-table-column {
      box-sizing: border-box;
    }

    .size-guide-dialog .el-table th {
      background-color: #f5f7fa;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .size-guide-dialog .el-dialog {
        width: 95% !important;
        margin: 0 auto;
      }
    }
    /* 全局样式调整 */
    .partial-visible-carousel .el-carousel__container {
      padding-left: 10px;
    }

    .partial-visible-carousel .el-carousel__item {
      width: 66.66% !important;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }

    @media (max-width: 600px) {
      .dialog-review-form .el-dialog__body {
        padding: 10px !important;
      }

      .dialog-review-form .el-upload,
      .dialog-review-form .el-upload-dragger {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
      }

      .dialog-review-form .el-upload__text {
        word-break: break-word;
        white-space: normal;
        text-align: center;
      }
    }

  .video-play-overlay {
    position: absolute;
    top: auto;
    left: auto;
    right: 8px;
    bottom: 8px;
    transform: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .swiper-slide {
    position: relative;
  }

  .swiper-slide:hover .video-play-overlay {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
  }

  .share-buttons .btn {
    min-width: 120px;
  }

  .share-buttons .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  #shareUrlInput {
    font-size: 0.9em;
  }

  .spinner-border-sm {
    width: 1rem;
    height: 1rem;
  }

  /* 拼多多风格弹窗样式 */
  .pdd-style-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
  }

  /* 头部样式 */
  .pdd-modal-header {
    position: relative;
    padding: 0;
    border: none;
    overflow: hidden;
  }

  .pdd-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa8a8 100%);
  }

  .pdd-header-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pddShimmer 3s ease-in-out infinite;
  }

  @keyframes pddShimmer {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
  }

  .pdd-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .pdd-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .pdd-header-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px;
    color: white;
  }

  .pdd-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    backdrop-filter: blur(10px);
  }

  .pdd-gift-icon {
    font-size: 24px;
    color: white;
    animation: pddBounce 2s ease-in-out infinite;
  }

  @keyframes pddBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }

  .pdd-modal-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .pdd-modal-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
  }

  /* 主体内容样式 */
  .pdd-modal-body {
    padding: 25px;
    background: #f8f9fa;
  }

  /* 价格展示区域 */
  .pdd-price-section {
    margin-bottom: 25px;
  }

  .pdd-price-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }

  .pdd-current-price {
    width: 100%;
    text-align: center;
  }

  .pdd-target-price {
    text-align: center;
    flex: 1;
  }

  .cut-progress-info {
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(220, 53, 69, 0.2);
  }

  .cut-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
  }

  .pdd-price-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
  }

  .pdd-price-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .pdd-price-value.pdd-target {
    color: #ff6b6b;
  }

  .pdd-progress-wrapper {
    text-align: center;
  }

  .pdd-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .pdd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .pdd-progress-text {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  .pdd-highlight {
    color: #ff6b6b;
    font-weight: bold;
  }

  /* 分享按钮区域 */
  .pdd-share-section {
    margin-bottom: 20px;
  }

  .pdd-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
  }

  .pdd-share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pdd-share-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pdd-share-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .pdd-share-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .pdd-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
  }

  .pdd-facebook .pdd-btn-icon {
    background: #1877f2;
  }

  .pdd-twitter .pdd-btn-icon {
    background: #1da1f2;
  }

  .pdd-whatsapp .pdd-btn-icon {
    background: #25d366;
  }

  .pdd-copy .pdd-btn-icon {
    background: #6c757d;
  }

  .pdd-share-btn span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
  }

  /* 链接输入区域 */
  .pdd-link-section {
    margin-bottom: 20px;
  }

  .pdd-link-wrapper {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .pdd-link-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    background: transparent;
    outline: none;
  }

  .pdd-copy-btn {
    background: #ff6b6b;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .pdd-copy-btn:hover {
    background: #ff5252;
  }

  /* 加载状态 */
  .pdd-loading {
    text-align: center;
    padding: 20px;
  }

  .pdd-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .pdd-loading-text {
    color: #666;
    font-size: 14px;
    margin: 0;
  }

  /* 底部按钮 */
  .pdd-modal-footer {
    padding: 20px 25px;
    border: none;
    background: #f8f9fa;
  }

  .pdd-start-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pdd-start-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  }

  .pdd-start-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .pdd-btn-arrow {
    transition: transform 0.3s ease;
  }

  .pdd-start-btn:hover .pdd-btn-arrow {
    transform: translateX(3px);
  }

  /* 响应式设计 */
  @media (max-width: 576px) {
    .pdd-style-modal {
      margin: 10px;
      max-width: calc(100vw - 20px);
    }

    .pdd-share-buttons {
      grid-template-columns: 1fr;
    }

    .pdd-price-card {
      flex-direction: column;
      gap: 15px;
    }
  }

    .group-buying-price {
      font-size: 16px;
    }

    .group-buying-price .badge {
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
    }

    .btn-group-buying {
      background-color: #28a745;
      border-color: #28a745;
      color: white;
    }

    .btn-group-buying:hover {
      background-color: #218838;
      border-color: #1e7e34;
      color: white;
    }

    .btn-group-buying:disabled {
      background-color: #6c757d;
      border-color: #6c757d;
    }

    @media (max-width: 768px) {
      .group-buying-price {
        margin-bottom: 1rem;
      }

      .btn-group-buying {
        width: 100%;
        margin-top: 0.5rem;
      }
    }
